Can I set the "clean" command in Eclipse Neon CDT without manually editing .cproject?
NickName:Klaus Kaiser Ask DateTime:2017-07-29T02:06:21

Can I set the "clean" command in Eclipse Neon CDT without manually editing .cproject?

It seems to be a common problem with Eclipse CDT on Windows that Eclipse uses the Windows "del" command to perform a "clean", while using Unix-style paths and rm options. The workaround, at least for the Juno release, is to force Eclipse to use the GnuUtils rm instead: Editing .cproject to change the clean command

I had the opposite problem - Eclipse insisted on running "del" in a project using the GNU toolchain and MinGW build tools, which did not work. Therefore, I edited .cproject to force the use of rm.

Is this the only way to do it, even in newer releases of Eclipse, e.g. Neon? I would expect that Eclipse has a built-in control for this setting, but I browsed through the project settings and through the online help without finding any.

Copyright Notice:Content Author:「Klaus Kaiser」,Reproduced under the CC 4.0 BY-SA copyright license with a link to the original source and this disclaimer.
Link to original article:https://stackoverflow.com/questions/45379793/can-i-set-the-clean-command-in-eclipse-neon-cdt-without-manually-editing-cpro

More about “Can I set the "clean" command in Eclipse Neon CDT without manually editing .cproject?” related questions

Can I set $? in a test?

I have a Ruby program. That program goes IO.popen('blah') { ... } if $?.success? ... Most of the time $? is a Process::Status object. Occasionally it's nil instead. That crashes the program. E...

Show Detail

Can I set the UIFont height?

Can I set the UIFont height as well as the line spacing? I googled this, it seems no way to set height for the IOS built-in font. One possible way is to use customized font. This seems too heavy si...

Show Detail

Can i set the contents of ListView?

I have a data model that has a few nested lists and i would like to use ListViews to show them because i like having the details in the list. eg data Model public class EventModel { public Li...

Show Detail

What variable can I use which I can set its set of values?

I want to use a variable that can only have a set amount of values that I define in Java. I've seen this variable before but I cannot find it online any where. For example, I make it so it can be e...

Show Detail

Can I set DataGridHeader by AutoGeneratedColumns?

I want set header FirstName,LastName by AutoGeneratedColumns. I tried this code, but DataGrid Header display Name1,Name2. I know, DataGridColumns can make header. but I want set header by

Show Detail

Why can I set the properties of a privately set property?

I have a class LoginManager which has a private field currentUser and a public property CurrentUser to not allow myself to accidentally change the value of CurrentUser from outside the LoginManager...

Show Detail

can i use dictionary as a value of set?

as you can see that i am trying to use dictionary in set as a value but it is showing error i want to know that why it is not possible to use dictionary as a value of set ? i want to know why ? is ...

Show Detail

Can I set the GLSL version?

I'm trying to figure out if I can set the GLSL version used in OpenGL 2.1. So far it works with some generic immediate mode shaders, but I'd like to use modern OpenGL shaders. Any ideas on how I can?

Show Detail

Can I set a custom MinWidth for an ApplicationView?

Can I set custom ApplicationView MinWidth in my app? Or Can I disable 500,320 and other, just set MinWidth like my current width?

Show Detail

How can I set the length of an array?

the thing is I don't know if I can set the length of an array in Ruby, I want to set the length of an array with the length of 10 without writing 10 variables inside, is this possible, if so how ca...

Show Detail